home *** CD-ROM | disk | FTP | other *** search
- ;
- ; CIM's Installer Script.
- ; $VER: V0.42 (04.02.1998)
- ; Written by Jan-Erik Tervo
- ;
-
- (ONERROR
- (CLEANUP)
- )
-
- (SET @default-dest "CIM:bin/")
-
-
-
- ; ENGLISH STRINGS
-
- (SET #alku_str
- (cat "\nThis script will update only the executable at CIM:bin/\n\n")
- )
-
- (SET #str-installing-exe
- (cat "\n\nInstalling...")
-
- )
-
-
-
- (MESSAGE #alku_str)
-
- (complete 0)
-
-
- (SET CIMdirBin "CIM:bin/")
- (SET CIMdir "CIM:")
- (SET CIMdirname (TACKON CIMdir "CIM"))
- (SET @default-dest CIMdir)
-
-
- (complete 50)
-
- (copyfiles
- (source "stuff/bin/")
- (pattern "#?")
- (dest CIMdirBin)
- (prompt #str-installing-exe)
- )
-
- (run "protect CIM:bin/cim rwed")
-
- (complete 100)
-
- ; end of installation
-
- (exit)
-
-